nav {
    height: 80px;
    padding: 0 40px;

    display: flex;
    flex-direction: row;

    margin-top: 20px;
}

nav .nav-button {
    height: 100%;

    border-radius: 5px;
    padding: 26px 15px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    flex-basis: 0;
    flex-grow: 1;

    /* margin-left: 10px; */

    box-shadow: 3px 3px 6px #0000002B;

    cursor: pointer;
}

nav .nav-button:not(.active) {
    margin-left: 0;
}

nav .nav-button:not(.active) ~ .nav-button {
    margin-left: 10px;
}

nav .nav-button.active {
    display: none;
}

nav .nav-button p {
    font-family: 'Josefin Sans';
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;

    text-align: center;

    line-break: loose;

    color: white;
}